#include <hidef.h> /* for EnableInterrupts macro */
#include "derivative.h" /* include peripheral declarations */
int a,b;




void main(void) {
  EnableInterrupts;
  /* include your code here */

  

  for(;;) {
	  a++;
	  b--;

    __RESET_WATCHDOG();	/* feeds the dog */
  } /* loop forever */
  /* please make sure that you never leave main */
}
